home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / aros / exec / cause.c < prev    next >
C/C++ Source or Header  |  1996-09-12  |  864b  |  49 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: cause.c,v 1.1 1996/08/13 13:55:07 digulla Exp $    $Log
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "exec_intern.h"
  8.  
  9. /*****************************************************************************
  10.  
  11.     NAME */
  12.     #include <exec/interrupts.h>
  13.     #include <clib/exec_protos.h>
  14.  
  15.     __AROS_LH1(void, Cause,
  16.  
  17. /*  SYNOPSIS */
  18.     __AROS_LHA(struct Interrupt *, interrupt, A1),
  19.  
  20. /*  LOCATION */
  21.     struct ExecBase *, SysBase, 30, Exec)
  22.  
  23. /*  FUNCTION
  24.  
  25.     INPUTS
  26.  
  27.     RESULT
  28.  
  29.     NOTES
  30.  
  31.     EXAMPLE
  32.  
  33.     BUGS
  34.  
  35.     SEE ALSO
  36.  
  37.     INTERNALS
  38.  
  39.     HISTORY
  40.     29-10-95    digulla automatically created from
  41.                 exec_lib.fd and clib/exec_protos.h
  42.  
  43. *****************************************************************************/
  44. {
  45.     __AROS_FUNC_INIT
  46.     __AROS_BASE_EXT_DECL(struct ExecBase *,SysBase)
  47.     __AROS_FUNC_EXIT
  48. } /* Cause */
  49.